home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C
/
Applications
/
Python 1.3.3
/
stdwin
/
Tools
/
memcpy.c
< prev
next >
Wrap
Text File
|
1995-12-21
|
131b
|
13 lines
char *
memcpy(dst, src, n)
char *dst;
char *src;
int n;
{
char *d= dst;
while (--n >= 0) {
*dst++ = *src++;
}
return d;
}